home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-07-21 | 500 b | 19 lines | [TEXT/CWIE] |
- // ===========================================================================
- // CDlogBox.h
- // ===========================================================================
-
- #pragma once
- #include <LDialogBox.h>
-
- class CDlogBox : public LDialogBox{
- public:
- enum { class_ID = 'Cdlg' };
- static CDlogBox *Create(LCommander *inSuperCommander);
- CDlogBox(LStream *inStream);
-
- virtual void ListenToMessage(MessageT inMessage, void *ioParam);
-
- protected:
- virtual void FinishCreateSelf(void);
- };
-